您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

15 行
355 B

  1. <template>
  2. <ArticleDetailView
  3. :detail="detail"
  4. :hot-list="data?.hotList || []"
  5. :tag-list="data?.tagList || []"
  6. />
  7. </template>
  8. <script setup>
  9. import { useArticleDetail } from '~/composables/useArticle'
  10. // 前沿资讯详情:/info/new/{id}.html(与原 PC 站保持一致)
  11. const { data, detail } = await useArticleDetail(1)
  12. </script>